From: Carol (Nichols || Goulding) Date: Tue, 17 May 2016 22:33:13 +0000 (-0400) Subject: Correct typo when referring to 64 bit X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~14^2~7^2~4 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=1ae5e3917261f8de6225e4bf8c2f77a3cf004659;p=cargo.git Correct typo when referring to 64 bit --- diff --git a/src/doc/specifying-dependencies.md b/src/doc/specifying-dependencies.md index 74335e12c..bfa92e9e6 100644 --- a/src/doc/specifying-dependencies.md +++ b/src/doc/specifying-dependencies.md @@ -249,7 +249,7 @@ openssl = "1.0.1" native = { path = "native/i686" } [target.'cfg(target_pointer_width = "64")'.dependencies] -native = { path = "native/i686" } +native = { path = "native/x86_64" } ``` Like with Rust, the syntax here supports the `not`, `any`, and `all` operators